Hi Ray,
Are you terminating all your Timers and Threads that might be accessing the board before closing?
Regards
TK
Group: DynoMotion |
Message: 3256 |
From: himykabibble |
Date: 1/21/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
I believe so, but I'll make a second run through and check.
This is *really* close to working....
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
> Â
> Are you terminating all your Timers and Threads that might be accessing the board before closing?
> Â
> Regards
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Saturday, January 21, 2012 9:29 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad/Tom,
> >
> > OK, at least I've got a work-around, so not a biggie.
> >
> > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> >
> > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> >
> > Any idea where I should look?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > it out a while back as well.
> > >
> > >
> > >
> > > I think I have it fixed, but I need to test and upload new source.
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > Behalf Of himykabibble
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > >
> > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > >
> > > Each button has an LED in it. The button click event handlers use the
> > > following to set or clear the I/O bits:
> > >
> > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > >
> > > This much works properly, and the bits toggle as they should.
> > >
> > > My 100mSec status loop does the following to get current status
> > >
> > > KMController.UpdateMainStatus();
> > >
> > > I then have functions that return the current status of the coolant I/Os
> > > using:
> > >
> > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > >
> > > These values are used to control the LEDs in the two buttons.
> > >
> > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > back as true. To get the correct status back, I have to do the following:
> > >
> > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > >
> > > Regards,
> > > Ray L.
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3257 |
From: himykabibble |
Date: 1/21/2012 |
Subject: Re: Twiddling Bits in dotNet |
Nope, I'm stopping all timers, and killing all threads I've created.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> > Â
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > Â
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > Â
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3258 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
For what it’s worth, I can stop and start MM and the html app without crashing anything. -Brad From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Saturday, January 21, 2012 11:15 PM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet Nope, I'm stopping all timers, and killing all threads I've created.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Tom, > > I believe so, but I'll make a second run through and check. > > This is *really* close to working.... > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > Hi Ray, > > Â > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > Â > > Regards > > TK > > > > From: himykabibble <jagboy@> > > To: DynoMotion@yahoogroups.com > > Sent: Saturday, January 21, 2012 9:29 PM > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > Â > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > Brad/Tom, > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > Any idea where I should look? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > it out a while back as well. > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On > > > > Behalf Of himykabibble > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > To: DynoMotion@yahoogroups.com > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > following to set or clear the I/O bits: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > using: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > Regards, > > > > Ray L. > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3259 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Ray, Also worth noting is that I will occasionally get a rogue KmotionServer.exe process if I have a kflop plugged in with an app connected and my cpu hibernates. When this happens, I usually need to restart as the process cannot be terminated in the task manager. -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Brad Murry Sent: Sunday, January 22, 2012 2:16 AM To: DynoMotion@yahoogroups.com Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet For what it’s worth, I can stop and start MM and the html app without crashing anything. -Brad Nope, I'm stopping all timers, and killing all threads I've created.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Tom, > > I believe so, but I'll make a second run through and check. > > This is *really* close to working.... > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > Hi Ray, > > Â > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > Â > > Regards > > TK > > > > From: himykabibble <jagboy@> > > To: DynoMotion@yahoogroups.com > > Sent: Saturday, January 21, 2012 9:29 PM > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > Â > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > Brad/Tom, > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > Any idea where I should look? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > it out a while back as well. > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On > > > > Behalf Of himykabibble > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > To: DynoMotion@yahoogroups.com > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > following to set or clear the I/O bits: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > using: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > Regards, > > > > Ray L. > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3260 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
This crash is coming after mere seconds of running. I can open my app, open KMotion, close my app, all within a few seconds, the get the crash. Is there anything more I need to do than KM_Controller.Dispose()?
I have one timer thread doing my 100mSec GUI updates. There are no other threads accessing the KM_Controller, other than when button presses occur. I stop that timer, then do the dispose.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Ray,
>
>
>
> Also worth noting is that I will occasionally get a rogue KmotionServer.exe
> process if I have a kflop plugged in with an app connected and my cpu
> hibernates.
>
>
>
> When this happens, I usually need to restart as the process cannot be
> terminated in the task manager.
>
>
>
>
>
> -Brad Murry
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> Behalf Of Brad Murry
> Sent: Sunday, January 22, 2012 2:16 AM
> To: DynoMotion@yahoogroups.com
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> For what it's worth, I can stop and start MM and the html app without
> crashing anything.
>
>
>
> -Brad
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> Behalf Of himykabibble
> Sent: Saturday, January 21, 2012 11:15 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Nope, I'm stopping all timers, and killing all threads I've created.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ,
> "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > I believe so, but I'll make a second run through and check.
> >
> > This is *really* close to working....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ,
> Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > Are you terminating all your Timers and Threads that might be accessing
> the board before closing?
> > > Â
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Also, if I open my app, then open KMotion, then close my app, the board
> disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller
> in the FormClosing event handler. Is there something more I need to do to
> shutdown more gracefully?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad/Tom,
> > > >
> > > > OK, at least I've got a work-around, so not a biggie.
> > > >
> > > > I am having another problem, related to disconnects. Using the
> combination of CheckIsReady() and Connected, I now seem to be reliably
> seeing connects and disconnects. At least I have yet to see it screw up.
> But, I'm finding that I can easily get things into a state where KMotion
> and/or dotNet appear to no longer work properly.
> > > >
> > > > If I have my app running, then disconnect the USB cable, the app
> correctly detects the disconnect. If I then re-connect the cable, the app
> correctly detects the reconnect, and the app mostly works properly. But, I
> can no longer control I/Os, and, at this point I can not even start up
> KMotion - it just hangs before putting anything up on the screen. Something
> in either KMotion or dotNet seems to be locking up.
> > > >
> > > > Any idea where I should look?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com
> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > That is right Ray, the issue is with the MainStatus interop. Kevin
> pointed
> > > > > it out a while back as well.
> > > > >
> > > > >
> > > > >
> > > > > I think I have it fixed, but I need to test and upload new source.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com
> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com
> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > Behalf Of himykabibble
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
>
> > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > You seem to have a fencepose error in the I/O handling in dotNet. I
> have two
> > > > > buttons that control I/Os for Mist and Flood coolant, defined as
> follows:
> > > > >
> > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > >
> > > > > Each button has an LED in it. The button click event handlers use
> the
> > > > > following to set or clear the I/O bits:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > This much works properly, and the bits toggle as they should.
> > > > >
> > > > > My 100mSec status loop does the following to get current status
> > > > >
> > > > > KMController.UpdateMainStatus();
> > > > >
> > > > > I then have functions that return the current status of the coolant
> I/Os
> > > > > using:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > These values are used to control the LEDs in the two buttons.
> > > > >
> > > > > Here's the problem: I can correctly control the I/O pins. But, if I
> turn on
> > > > > the Mist, the Mist status comes back as false, and the Flood status
> comes
> > > > > back as true. To get the correct status back, I have to do the
> following:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3261 |
From: TK |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
Regards TK
On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
Nope, I'm stopping all timers, and killing all threads I've created.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> > Â
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > Â
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > Â
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3262 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom/Ray If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is. This means you should only be using the files in the KMotion4xx\Kmotion\Release folder -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK Sent: Sunday, January 22, 2012 9:51 AM To: DynoMotion@yahoogroups.com Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
Nope, I'm stopping all timers, and killing all threads I've created.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Tom, > > I believe so, but I'll make a second run through and check. > > This is *really* close to working.... > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > Hi Ray, > > Â > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > Â > > Regards > > TK > > > > From: himykabibble <jagboy@> > > To: DynoMotion@yahoogroups.com > > Sent: Saturday, January 21, 2012 9:29 PM > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > Â > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > Brad/Tom, > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > Any idea where I should look? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > it out a while back as well. > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On > > > > Behalf Of himykabibble > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > To: DynoMotion@yahoogroups.com > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > following to set or clear the I/O bits: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > using: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > Regards, > > > > Ray L. > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3264 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
That's what I'm trying to do, but I must be doing something wrong. I'm seeing things that just don't make sense. I have one timer running whose only purpose is doing the "blink" on the on-screen buttons. I setup one button with the following code:
StatusLine.AppendText("MachinePosButtonClick\n");
myBlinkTimer.Stop();
myBlinkTimer.Dispose();
Incredibly, the text displays in the status line, and the button CONTINUES to blink! How can that be??
My update loop runs on a System.Windows.Forms.Timer, at a 100mSec rate. The timer "Tick" handler is the ONLY thing that communicates with KM at all (except for user button presses, which are NOT occurring). Stopping the timer *should* stop the update events from occurring, but based on what's happening with the BlinkTimer above, I have to have my doubts. I tried to have the update handler turn off the timer, by adding a flag that is set in a button handler, and when that flag is set, the update handler will turn the timer off itself. That makes no difference whatsoever. And if I set that flag in the FormClose or FormClosing handler, then try to wait for the timer to be shot down, it never happens. I must be doing something really wrong, but damned if I can figure out what!
I've also noticed that if I bring up the app with the board connected, then disconnect, and re-connect the board, after the re-connect the app runs very slowly, as indicated by the buttons blinking at about half the normal rate. There's a whole lotta cycles going somewhere, but where? It appears to me that the KM method calls are suddenly taking a very long time to return. But why? What am I doing wrong that could cause that? As long as I don't do a disconnect, everything seems to work perfectly.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, TK <tk@...> wrote:
>
> Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
>
> Regards
>
> TK
>
> On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
>
> > Nope, I'm stopping all timers, and killing all threads I've created.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > I believe so, but I'll make a second run through and check.
> > >
> > > This is *really* close to working....
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Ã
> > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > Ã
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Ã
> > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad/Tom,
> > > > >
> > > > > OK, at least I've got a work-around, so not a biggie.
> > > > >
> > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > >
> > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > >
> > > > > Any idea where I should look?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > it out a while back as well.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > > > Behalf Of himykabibble
> > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > >
> > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > >
> > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > following to set or clear the I/O bits:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > This much works properly, and the bits toggle as they should.
> > > > > >
> > > > > > My 100mSec status loop does the following to get current status
> > > > > >
> > > > > > KMController.UpdateMainStatus();
> > > > > >
> > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > using:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > These values are used to control the LEDs in the two buttons.
> > > > > >
> > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > >
> > > >
> > >
> >
> >
>
|
|
Group: DynoMotion |
Message: 3265 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
Everything I'm using is from v428. It's the only version I have on my machine.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Tom/Ray
>
> If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
>
>
>
> The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâ¦. in your app as KMotion.exe is.
>
>
>
> This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK
> Sent: Sunday, January 22, 2012 9:51 AM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
>
>
>
> Regards
>
>
> TK
>
>
> On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
>
>
>
> Nope, I'm stopping all timers, and killing all threads I've created.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > I believe so, but I'll make a second run through and check.
> >
> > This is *really* close to working....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Ã
> > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > Ã
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Ã
> > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad/Tom,
> > > >
> > > > OK, at least I've got a work-around, so not a biggie.
> > > >
> > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > >
> > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > >
> > > > Any idea where I should look?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > it out a while back as well.
> > > > >
> > > > >
> > > > >
> > > > > I think I have it fixed, but I need to test and upload new source.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > Behalf Of himykabibble
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > >
> > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > >
> > > > > Each button has an LED in it. The button click event handlers use the
> > > > > following to set or clear the I/O bits:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > This much works properly, and the bits toggle as they should.
> > > > >
> > > > > My 100mSec status loop does the following to get current status
> > > > >
> > > > > KMController.UpdateMainStatus();
> > > > >
> > > > > I then have functions that return the current status of the coolant I/Os
> > > > > using:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > These values are used to control the LEDs in the two buttons.
> > > > >
> > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > back as true. To get the correct status back, I have to do the following:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3267 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Ray, I was referring to using the Release version instead of the Debug with respect to your KMotion references. -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 10:51 AM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet Brad,
Everything I'm using is from v428. It's the only version I have on my machine.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote: > > Tom/Ray > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is. > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > -Brad Murry > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK > Sent: Sunday, January 22, 2012 9:51 AM > To: DynoMotion@yahoogroups.com > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > Regards > > > TK > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote: > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > Tom, > > > > I believe so, but I'll make a second run through and check. > > > > This is *really* close to working.... > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > Hi Ray, > > > Â > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > Â > > > Regards > > > TK > > > > > > From: himykabibble <jagboy@> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > Sent: Saturday, January 21, 2012 9:29 PM > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > Â > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > Brad/Tom, > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > Any idea where I should look? > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > Behalf Of himykabibble > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > > following to set or clear the I/O bits: > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > > using: > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3269 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
I have one reference to the dotNet dll, and it is the release version.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Ray,
>
>
>
> I was referring to using the Release version instead of the Debug with respect to your KMotion references.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 10:51 AM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> Everything I'm using is from v428. It's the only version I have on my machine.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > Tom/Ray
> >
> > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> >
> >
> >
> > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcââ¬Â¦. in your app as KMotion.exe is.
> >
> >
> >
> > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > Sent: Sunday, January 22, 2012 9:51 AM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> >
> >
> >
> > Regards
> >
> >
> > TK
> >
> >
> > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> >
> >
> >
> > Nope, I'm stopping all timers, and killing all threads I've created.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > I believe so, but I'll make a second run through and check.
> > >
> > > This is *really* close to working....
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Ãâ
> > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > Ãâ
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Ãâ
> > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad/Tom,
> > > > >
> > > > > OK, at least I've got a work-around, so not a biggie.
> > > > >
> > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > >
> > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > >
> > > > > Any idea where I should look?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > it out a while back as well.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > Behalf Of himykabibble
> > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > >
> > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > >
> > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > following to set or clear the I/O bits:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > This much works properly, and the bits toggle as they should.
> > > > > >
> > > > > > My 100mSec status loop does the following to get current status
> > > > > >
> > > > > > KMController.UpdateMainStatus();
> > > > > >
> > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > using:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > These values are used to control the LEDs in the two buttons.
> > > > > >
> > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3272 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> I have one reference to the dotNet dll, and it is the release version.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Ray,
> >
> >
> >
> > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 10:51 AM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > Everything I'm using is from v428. It's the only version I have on my machine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > Tom/Ray
> > >
> > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > >
> > >
> > >
> > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcââ¬Â¦. in your app as KMotion.exe is.
> > >
> > >
> > >
> > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > Sent: Sunday, January 22, 2012 9:51 AM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > >
> > >
> > >
> > > Regards
> > >
> > >
> > > TK
> > >
> > >
> > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > >
> > >
> > >
> > > Nope, I'm stopping all timers, and killing all threads I've created.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > I believe so, but I'll make a second run through and check.
> > > >
> > > > This is *really* close to working....
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Ãâ
> > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > Ãâ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Ãâ
> > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad/Tom,
> > > > > >
> > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > >
> > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > >
> > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > >
> > > > > > Any idea where I should look?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > it out a while back as well.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > Behalf Of himykabibble
> > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > >
> > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > >
> > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > following to set or clear the I/O bits:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > >
> > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > >
> > > > > > > My 100mSec status loop does the following to get current status
> > > > > > >
> > > > > > > KMController.UpdateMainStatus();
> > > > > > >
> > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > using:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > >
> > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > >
> > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3273 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
It likely you are attaching your handler multiple times. -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 11:17 AM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Brad, > > I have one reference to the dotNet dll, and it is the release version. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > Ray, > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > -Brad Murry > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > Sent: Sunday, January 22, 2012 10:51 AM > > To: DynoMotion@yahoogroups.com > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > Brad, > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > Tom/Ray > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is. > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > Sent: Sunday, January 22, 2012 9:51 AM > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > Regards > > > > > > > > > TK > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > Tom, > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > This is *really* close to working.... > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > Hi Ray, > > > > > Â > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > Â > > > > > Regards > > > > > TK > > > > > > > > > > From: himykabibble <jagboy@> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > Â > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > Behalf Of himykabibble > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > > > > following to set or clear the I/O bits: > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > > > > using: > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3274 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
It happens one time, in the form constructor....
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> It likely you are attaching your handler multiple times.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 11:17 AM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > I have one reference to the dotNet dll, and it is the release version.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > Ray,
> > >
> > >
> > >
> > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 10:51 AM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > Everything I'm using is from v428. It's the only version I have on my machine.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > Tom/Ray
> > > >
> > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > >
> > > >
> > > >
> > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > >
> > > >
> > > >
> > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > >
> > > >
> > > >
> > > > Regards
> > > >
> > > >
> > > > TK
> > > >
> > > >
> > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > >
> > > >
> > > >
> > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Tom,
> > > > >
> > > > > I believe so, but I'll make a second run through and check.
> > > > >
> > > > > This is *really* close to working....
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad/Tom,
> > > > > > >
> > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > >
> > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > >
> > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > >
> > > > > > > Any idea where I should look?
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > it out a while back as well.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > Behalf Of himykabibble
> > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > >
> > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > >
> > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > following to set or clear the I/O bits:
> > > > > > > >
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > >
> > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > >
> > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > >
> > > > > > > > KMController.UpdateMainStatus();
> > > > > > > >
> > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > using:
> > > > > > > >
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > >
> > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > >
> > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > >
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3275 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> It happens one time, in the form constructor....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > It likely you are attaching your handler multiple times.
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 11:17 AM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Brad,
> > >
> > > I have one reference to the dotNet dll, and it is the release version.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > Ray,
> > > >
> > > >
> > > >
> > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > Tom/Ray
> > > > >
> > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > >
> > > > >
> > > > >
> > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > > >
> > > > >
> > > > >
> > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > >
> > > > >
> > > > >
> > > > > Regards
> > > > >
> > > > >
> > > > > TK
> > > > >
> > > > >
> > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > >
> > > > >
> > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Tom,
> > > > > >
> > > > > > I believe so, but I'll make a second run through and check.
> > > > > >
> > > > > > This is *really* close to working....
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad/Tom,
> > > > > > > >
> > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > >
> > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > >
> > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > >
> > > > > > > > Any idea where I should look?
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > it out a while back as well.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > Behalf Of himykabibble
> > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > >
> > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > >
> > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > >
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > >
> > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > >
> > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > >
> > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > >
> > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > using:
> > > > > > > > >
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > >
> > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > >
> > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > >
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3276 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > It happens one time, in the form constructor....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > It likely you are attaching your handler multiple times.
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 11:17 AM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad,
> > > >
> > > > I have one reference to the dotNet dll, and it is the release version.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > Ray,
> > > > >
> > > > >
> > > > >
> > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Tom/Ray
> > > > > >
> > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > >
> > > > > >
> > > > > >
> > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > > > >
> > > > > >
> > > > > >
> > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > >
> > > > > >
> > > > > >
> > > > > > Regards
> > > > > >
> > > > > >
> > > > > > TK
> > > > > >
> > > > > >
> > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > >
> > > > > >
> > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Tom,
> > > > > > >
> > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > >
> > > > > > > This is *really* close to working....
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Ray,
> > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad/Tom,
> > > > > > > > >
> > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > >
> > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > >
> > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > >
> > > > > > > > > Any idea where I should look?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > it out a while back as well.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > >
> > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > >
> > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > >
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > >
> > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > >
> > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > >
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > >
> > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > using:
> > > > > > > > > >
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > >
> > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > >
> > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > >
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3277 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
// Re-connected, so download our init.c
Thread.Sleep(1000);
String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
KMController.CompileAndLoadCoff(1, TheCFile, true);
KMController.WriteLine("Execute1");
Thread.Sleep(1000);
Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad,
> > >
> > > It happens one time, in the form constructor....
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > It likely you are attaching your handler multiple times.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Ray,
> > > > > >
> > > > > >
> > > > > >
> > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Tom/Ray
> > > > > > >
> > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Regards
> > > > > > >
> > > > > > >
> > > > > > > TK
> > > > > > >
> > > > > > >
> > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > >
> > > > > > > > This is *really* close to working....
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad/Tom,
> > > > > > > > > >
> > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > >
> > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > >
> > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > >
> > > > > > > > > > Any idea where I should look?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > it out a while back as well.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > >
> > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > >
> > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > >
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > >
> > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > >
> > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > >
> > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > >
> > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > using:
> > > > > > > > > > >
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > >
> > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > >
> > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > >
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3283 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try to time the calls, and see what we're dealing with.
At least the crashes are now gone!
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
>
> // Re-connected, so download our init.c
> Thread.Sleep(1000);
> String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> KMController.CompileAndLoadCoff(1, TheCFile, true);
> KMController.WriteLine("Execute1");
> Thread.Sleep(1000);
>
> Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad,
> > > >
> > > > It happens one time, in the form constructor....
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > It likely you are attaching your handler multiple times.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Ray,
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Tom/Ray
> > > > > > > >
> > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Regards
> > > > > > > >
> > > > > > > >
> > > > > > > > TK
> > > > > > > >
> > > > > > > >
> > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > >
> > > > > > > > > This is *really* close to working....
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad/Tom,
> > > > > > > > > > >
> > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > >
> > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > >
> > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > >
> > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > >
> > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > >
> > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > >
> > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > >
> > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > >
> > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > using:
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > >
> > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > >
> > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3286 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Uh-oh! This looks like a problem.... The UpdateStatus calls are taking an average of about 300 mSec. I need to get status considerably faster than that. Any ideas?
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try to time the calls, and see what we're dealing with.
>
> At least the crashes are now gone!
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> >
> > // Re-connected, so download our init.c
> > Thread.Sleep(1000);
> > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > KMController.WriteLine("Execute1");
> > Thread.Sleep(1000);
> >
> > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > It happens one time, in the form constructor....
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > It likely you are attaching your handler multiple times.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Tom/Ray
> > > > > > > > >
> > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Regards
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > >
> > > > > > > > > > This is *really* close to working....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > >
> > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > >
> > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > >
> > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > >
> > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > >
> > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > >
> > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > using:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3287 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
On a fresh start, UpdateStatus returns quickly, apparently under a mSec. But after a disconnect-reconnect, it jumps up to about 200mSec if my app is the only one running, or 300mSec if KMotion is also running.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Uh-oh! This looks like a problem.... The UpdateStatus calls are taking an average of about 300 mSec. I need to get status considerably faster than that. Any ideas?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try to time the calls, and see what we're dealing with.
> >
> > At least the crashes are now gone!
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > >
> > > // Re-connected, so download our init.c
> > > Thread.Sleep(1000);
> > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > KMController.WriteLine("Execute1");
> > > Thread.Sleep(1000);
> > >
> > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > It happens one time, in the form constructor....
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > It likely you are attaching your handler multiple times.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Ray,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom/Ray
> > > > > > > > > >
> > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcâââ¬Ã¦. in your app as KMotion.exe is.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Regards
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom,
> > > > > > > > > > >
> > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > >
> > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > > > Regards
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'ââ¬Å¡
> > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > >
> > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > using:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3289 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Hi Ray,
No it shouldn't take that long.
These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves:
User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
And then the data transfers at ~ 400KByes per second.
I think the MainStatus record is around 300 bytes.
So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
Of course these are typical times. Worst case might be seconds depending on Windows.
Regards.
TK
Group: DynoMotion |
Message: 3294 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
DateTime start = DateTime.Now;
KMController.UpdateMainStatus();
DateTime end = DateTime.Now;
TimeSpan delta = end - start;
Debug.WriteLine(start + " " + end + "=" + delta + "\n");
Without the disconnect/reconnect, all is fine.
Any ideas?
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
> Â
> No it shouldn't take that long.
> Â
> These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves:
> Â
> User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> Â
> And then the data transfers at ~ 400KByes per second.
> Â
> I think the MainStatus record is around 300 bytes.   Â
> Â
> So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> Â
> Of course these are typical times. Worst case might be seconds depending on Windows.
> Â
> Regards.
> TK
> Â
> Â
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 11:43 AM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> to time the calls, and see what we're dealing with.
>
> At least the crashes are now gone!
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> >
> > // Re-connected, so download our init.c
> > Thread.Sleep(1000);
> > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > KMController.WriteLine("Execute1");
> > Thread.Sleep(1000);
> >
> > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > It happens one time, in the form constructor....
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > It likely you are attaching your handler multiple times.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Tom/Ray
> > > > > > > > >
> > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'ââââ¬Å¡Ã¬Ãâæ. in your app as KMotion.exe is.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Regards
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > >
> > > > > > > > > > This is *really* close to working....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > >
> > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > >
> > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > >
> > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > >
> > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > >
> > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > >
> > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > using:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3297 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Hi Ray,
Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
Regards
TK
Group: DynoMotion |
Message: 3298 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
> Â
> Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> Â
> Regards
> TKÂ
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 12:21 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> Tom,
>
> That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
>
> DateTime start = DateTime.Now;
> KMController.UpdateMainStatus();
> DateTime end = DateTime.Now;
> TimeSpan delta = end - start;
> Debug.WriteLine(start + " " + end + "=" + delta + "\n");
>
> Without the disconnect/reconnect, all is fine.
>
> Any ideas?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> > ÃÂ
> > No it shouldn't take that long.
> > ÃÂ
> > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÂ ThisÃÂ involves:
> > ÃÂ
> > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > ÃÂ
> > And then the data transfers at ~ 400KByes per second.
> > ÃÂ
> > I think the MainStatus record is around 300 bytes.ÃÂ ÃÂ ÃÂ ÃÂ
> > ÃÂ
> > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > ÃÂ
> > Of course these are typical times.ÃÂ Worst case might be seconds depending on Windows.
> > ÃÂ
> > Regards.
> > TK
> > ÃÂ
> > ÃÂ
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 11:43 AM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > ÃÂ
> > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > to time the calls, and see what we're dealing with.
> >
> > At least the crashes are now gone!
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > >
> > > // Re-connected, so download our init.c
> > > Thread.Sleep(1000);
> > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > KMController.WriteLine("Execute1");
> > > Thread.Sleep(1000);
> > >
> > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > It happens one time, in the form constructor....
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > It likely you are attaching your handler multiple times.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Ray,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom/Ray
> > > > > > > > > >
> > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Regards
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom,
> > > > > > > > > > >
> > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > >
> > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > > Regards
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > >
> > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > using:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3301 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> > Â
> > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > Â
> > Regards
> > TKÂ
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 12:21 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > Â
> > Tom,
> >
> > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> >
> > DateTime start = DateTime.Now;
> > KMController.UpdateMainStatus();
> > DateTime end = DateTime.Now;
> > TimeSpan delta = end - start;
> > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> >
> > Without the disconnect/reconnect, all is fine.
> >
> > Any ideas?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > ÃÂ
> > > No it shouldn't take that long.
> > > ÃÂ
> > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÂ ThisÃÂ involves:
> > > ÃÂ
> > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > ÃÂ
> > > And then the data transfers at ~ 400KByes per second.
> > > ÃÂ
> > > I think the MainStatus record is around 300 bytes.ÃÂ ÃÂ ÃÂ ÃÂ
> > > ÃÂ
> > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > ÃÂ
> > > Of course these are typical times.ÃÂ Worst case might be seconds depending on Windows.
> > > ÃÂ
> > > Regards.
> > > TK
> > > ÃÂ
> > > ÃÂ
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 11:43 AM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > ÃÂ
> > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > to time the calls, and see what we're dealing with.
> > >
> > > At least the crashes are now gone!
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > >
> > > > // Re-connected, so download our init.c
> > > > Thread.Sleep(1000);
> > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > KMController.WriteLine("Execute1");
> > > > Thread.Sleep(1000);
> > > >
> > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > It happens one time, in the form constructor....
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Ray,
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom/Ray
> > > > > > > > > > >
> > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Regards
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > >
> > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3302 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
You use colorful language Ray, So here is what I observe:: #1 UpdateMainStatus() is not performing the lock - get data – release as I thought, just a straight shot. I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: Stopwatch sw = new Stopwatch(); while (true) { sw.Reset(); sw.Start(); _Controller.UpdateMainStatus(); sw.Stop(); Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); Thread.Sleep(100); } I am seeing around 15ms round trip. Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: while (true) { sw.Reset(); var result = _Controller.WaitToken(100); if (result == KMOTION_TOKEN.KMOTION_LOCKED) { sw.Start(); _Controller.UpdateMainStatus(); sw.Stop(); _Controller.ReleaseToken(); Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); } Thread.Sleep(100); } I get the 218ms off the bat… So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 1:48 PM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Tom, > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > Hi Ray, > >  > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current? > >  > > Regards > > TK > > > > From: himykabibble <jagboy@> > > To: DynoMotion@yahoogroups.com > > Sent: Sunday, January 22, 2012 12:21 PM > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > >  > > Tom, > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > DateTime start = DateTime.Now; > > KMController.UpdateMainStatus(); > > DateTime end = DateTime.Now; > > TimeSpan delta = end - start; > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > Without the disconnect/reconnect, all is fine. > > > > Any ideas? > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > > > Hi Ray, > > >  > > > No it shouldn't take that long. > > >  > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves: > > >  > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > >  > > > And then the data transfers at ~ 400KByes per second. > > >  > > > I think the MainStatus record is around 300 bytes.    > > >  > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > >  > > > Of course these are typical times. Worst case might be seconds depending on Windows. > > >  > > > Regards. > > > TK > > >  > > >  > > > From: himykabibble <jagboy@> > > > To: DynoMotion@yahoogroups.com > > > Sent: Sunday, January 22, 2012 11:43 AM > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > >  > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try > > > to time the calls, and see what we're dealing with. > > > > > > At least the crashes are now gone! > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > // Re-connected, so download our init.c > > > > Thread.Sleep(1000); > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > KMController.WriteLine("Execute1"); > > > > Thread.Sleep(1000); > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > To: DynoMotion@yahoogroups.com > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > > > > > > > > > > > > > > > > > This is *really* close to working.... > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > Regards > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > > > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > > > > > > > > > Behalf Of himykabibble > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > > > > > > > > > > > > following to set or clear the I/O bits: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > > > > > > > > > > > > using: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3303 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Well I guess that last post was not entirely true… I am locking the board in the c++ side when I grab the Main_Status…. Are we introducing a race condition when calling locks to close together? -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Brad Murry Sent: Sunday, January 22, 2012 2:18 PM To: DynoMotion@yahoogroups.com Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet You use colorful language Ray, So here is what I observe:: #1 UpdateMainStatus() is not performing the lock - get data – release as I thought, just a straight shot. I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: Stopwatch sw = new Stopwatch(); while (true) { sw.Reset(); sw.Start(); _Controller.UpdateMainStatus(); sw.Stop(); Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); Thread.Sleep(100); } I am seeing around 15ms round trip. Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: while (true) { sw.Reset(); var result = _Controller.WaitToken(100); if (result == KMOTION_TOKEN.KMOTION_LOCKED) { sw.Start(); _Controller.UpdateMainStatus(); sw.Stop(); _Controller.ReleaseToken(); Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); } Thread.Sleep(100); } I get the 218ms off the bat… So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? -Brad Murry It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Tom, > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > Hi Ray, > >  > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current? > >  > > Regards > > TK > > > > From: himykabibble <jagboy@> > > To: DynoMotion@yahoogroups.com > > Sent: Sunday, January 22, 2012 12:21 PM > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > >  > > Tom, > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > DateTime start = DateTime.Now; > > KMController.UpdateMainStatus(); > > DateTime end = DateTime.Now; > > TimeSpan delta = end - start; > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > Without the disconnect/reconnect, all is fine. > > > > Any ideas? > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > > > Hi Ray, > > >  > > > No it shouldn't take that long. > > >  > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves: > > >  > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > >  > > > And then the data transfers at ~ 400KByes per second. > > >  > > > I think the MainStatus record is around 300 bytes.    > > >  > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > >  > > > Of course these are typical times. Worst case might be seconds depending on Windows. > > >  > > > Regards. > > > TK > > >  > > >  > > > From: himykabibble <jagboy@> > > > To: DynoMotion@yahoogroups.com > > > Sent: Sunday, January 22, 2012 11:43 AM > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > >  > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try > > > to time the calls, and see what we're dealing with. > > > > > > At least the crashes are now gone! > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > // Re-connected, so download our init.c > > > > Thread.Sleep(1000); > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > KMController.WriteLine("Execute1"); > > > > Thread.Sleep(1000); > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > To: DynoMotion@yahoogroups.com > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > > > > > > > > > > > > > > > > > This is *really* close to working.... > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > Regards > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > > > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > > > > > > > > > Behalf Of himykabibble > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > > > > > > > > > > > > following to set or clear the I/O bits: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > > > > > > > > > > > > using: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3304 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
I have no clue how that code came out formatted like that! Very odd....
Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> You use colorful language Ray,
>
>
>
>
>
> So here is what I observe::
>
>
>
>
>
> #1 UpdateMainStatus() is not performing the lock - get data â" release as I thought, just a straight shot.
>
>
>
> I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
>
>
>
> Stopwatch sw = new Stopwatch();
>
> while (true)
>
> {
>
> sw.Reset();
>
> sw.Start();
>
> _Controller.UpdateMainStatus();
>
> sw.Stop();
>
> Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
>
> Thread.Sleep(100);
>
> }
>
>
>
> I am seeing around 15ms round trip.
>
>
>
> Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
>
>
>
>
>
> Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
>
> while (true)
>
> {
>
> sw.Reset();
>
> var result = _Controller.WaitToken(100);
>
> if (result == KMOTION_TOKEN.KMOTION_LOCKED)
>
> {
>
> sw.Start();
>
> _Controller.UpdateMainStatus();
>
> sw.Stop();
>
> _Controller.ReleaseToken();
>
> Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
>
> }
>
> Thread.Sleep(100);
>
> }
>
>
>
> I get the 218ms off the batâ¦
>
>
>
> So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
>
> http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
>
>
>
>
>
> So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
>
>
>
> -Brad Murry
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 1:48 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Ã
> > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.à After the disconnect when you are getting the long delays.à Is theà MainStatus data correct and current?
> > > Ã
> > > Regards
> > > TKÃ
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Sunday, January 22, 2012 12:21 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Ã
> > > Tom,
> > >
> > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > >
> > > DateTime start = DateTime.Now;
> > > KMController.UpdateMainStatus();
> > > DateTime end = DateTime.Now;
> > > TimeSpan delta = end - start;
> > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > >
> > > Without the disconnect/reconnect, all is fine.
> > >
> > > Any ideas?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > ÃâÃ
> > > > No it shouldn't take that long.
> > > > ÃâÃ
> > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.Ãâà ThisÃâà involves:
> > > > ÃâÃ
> > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > ÃâÃ
> > > > And then the data transfers at ~ 400KByes per second.
> > > > ÃâÃ
> > > > I think the MainStatus record is around 300 bytes.Ãâà Ãâà Ãâà ÃâÃ
> > > > ÃâÃ
> > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > ÃâÃ
> > > > Of course these are typical times.Ãâà Worst case might be seconds depending on Windows.
> > > > ÃâÃ
> > > > Regards.
> > > > TK
> > > > ÃâÃ
> > > > ÃâÃ
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > ÃâÃ
> > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > to time the calls, and see what we're dealing with.
> > > >
> > > > At least the crashes are now gone!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > >
> > > > > // Re-connected, so download our init.c
> > > > > Thread.Sleep(1000);
> > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > KMController.WriteLine("Execute1");
> > > > > Thread.Sleep(1000);
> > > > >
> > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > It happens one time, in the form constructor....
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Ray,
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > >
> > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Regards
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > >
> > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3305 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Where are you getting your axis values? From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 2:27 PM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet Brad,
I have no clue how that code came out formatted like that! Very odd....
Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote: > > You use colorful language Ray, > > > > > > So here is what I observe:: > > > > > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot. > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: > > > > Stopwatch sw = new Stopwatch(); > > while (true) > > { > > sw.Reset(); > > sw.Start(); > > _Controller.UpdateMainStatus(); > > sw.Stop(); > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > Thread.Sleep(100); > > } > > > > I am seeing around 15ms round trip. > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: > > while (true) > > { > > sw.Reset(); > > var result = _Controller.WaitToken(100); > > if (result == KMOTION_TOKEN.KMOTION_LOCKED) > > { > > sw.Start(); > > _Controller.UpdateMainStatus(); > > sw.Stop(); > > _Controller.ReleaseToken(); > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > } > > Thread.Sleep(100); > > } > > > > I get the 218ms off the bat… > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? > > > > -Brad Murry > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > Sent: Sunday, January 22, 2012 1:48 PM > To: DynoMotion@yahoogroups.com > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware). > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > Tom, > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > Hi Ray, > > >  > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current? > > >  > > > Regards > > > TK > > > > > > From: himykabibble <jagboy@> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > Sent: Sunday, January 22, 2012 12:21 PM > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > >  > > > Tom, > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > > > DateTime start = DateTime.Now; > > > KMController.UpdateMainStatus(); > > > DateTime end = DateTime.Now; > > > TimeSpan delta = end - start; > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > > > Without the disconnect/reconnect, all is fine. > > > > > > Any ideas? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > Hi Ray, > > > >  > > > > No it shouldn't take that long. > > > >  > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves: > > > >  > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > > >  > > > > And then the data transfers at ~ 400KByes per second. > > > >  > > > > I think the MainStatus record is around 300 bytes.    > > > >  > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > > >  > > > > Of course these are typical times. Worst case might be seconds depending on Windows. > > > >  > > > > Regards. > > > > TK > > > >  > > > >  > > > > From: himykabibble <jagboy@> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > Sent: Sunday, January 22, 2012 11:43 AM > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > >  > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try > > > > to time the calls, and see what we're dealing with. > > > > > > > > At least the crashes are now gone! > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > > > // Re-connected, so download our init.c > > > > > Thread.Sleep(1000); > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > > KMController.WriteLine("Execute1"); > > > > > Thread.Sleep(1000); > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > > > > > > > > > > > > > > > > > > > This is *really* close to working.... > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > > > > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > > > > > > > > > > Behalf Of himykabibble > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > > > > > > > > > > > > > following to set or clear the I/O bits: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > > > > > > > > > > > > > using: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3306 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Hi Brad/Ray,
Well in that last post I can see why it takes so long. There is only one Token so you can only get it once. If you already have the token and try to get it again it will block and then timeout.
Also I wasn't really thinking correctly when I asked if the Data is refreshing. If getting the Token fails and times out, if you then go ahead and read the Main_Status most likely it will still work ok. It just means that by not having the token you are not protected and may get stepped on by some other Process/Thread/Task or step on somebody else.
I suspect there is a bug where someplace the token is never given back and from that point on everything else just times out trying to get the token.
One idea might be to set the timeout to infinity to debug and then things will simply permanently lock the first time after somebody doesn't give the token back properly.
Regards
TK
Group: DynoMotion |
Message: 3307 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Where are you getting your axis values?
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:27 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> I have no clue how that code came out formatted like that! Very odd....
>
> Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
>
> For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > You use colorful language Ray,
> >
> >
> >
> >
> >
> > So here is what I observe::
> >
> >
> >
> >
> >
> > #1 UpdateMainStatus() is not performing the lock - get data ââ¬" release as I thought, just a straight shot.
> >
> >
> >
> > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> >
> >
> >
> > Stopwatch sw = new Stopwatch();
> >
> > while (true)
> >
> > {
> >
> > sw.Reset();
> >
> > sw.Start();
> >
> > _Controller.UpdateMainStatus();
> >
> > sw.Stop();
> >
> > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> >
> > Thread.Sleep(100);
> >
> > }
> >
> >
> >
> > I am seeing around 15ms round trip.
> >
> >
> >
> > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> >
> >
> >
> >
> >
> > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> >
> > while (true)
> >
> > {
> >
> > sw.Reset();
> >
> > var result = _Controller.WaitToken(100);
> >
> > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> >
> > {
> >
> > sw.Start();
> >
> > _Controller.UpdateMainStatus();
> >
> > sw.Stop();
> >
> > _Controller.ReleaseToken();
> >
> > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> >
> > }
> >
> > Thread.Sleep(100);
> >
> > }
> >
> >
> >
> > I get the 218ms off the batââ¬Â¦
> >
> >
> >
> > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> >
> > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> >
> >
> >
> >
> >
> > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> >
> >
> >
> > -Brad Murry
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 1:48 PM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Ãâ
> > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.Ãâ After the disconnect when you are getting the long delays.Ãâ Is theÃâ MainStatus data correct and current?
> > > > Ãâ
> > > > Regards
> > > > TKÃâ
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Ãâ
> > > > Tom,
> > > >
> > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > >
> > > > DateTime start = DateTime.Now;
> > > > KMController.UpdateMainStatus();
> > > > DateTime end = DateTime.Now;
> > > > TimeSpan delta = end - start;
> > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > >
> > > > Without the disconnect/reconnect, all is fine.
> > > >
> > > > Any ideas?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > No it shouldn't take that long.
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'ââ¬Å¡Ãâ ThisÃÆ'ââ¬Å¡Ãâ involves:
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > And then the data transfers at ~ 400KByes per second.
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > I think the MainStatus record is around 300 bytes.ÃÆ'ââ¬Å¡Ãâ ÃÆ'ââ¬Å¡Ãâ ÃÆ'ââ¬Å¡Ãâ ÃÆ'ââ¬Å¡Ãâ
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > Of course these are typical times.ÃÆ'ââ¬Å¡Ãâ Worst case might be seconds depending on Windows.
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > Regards.
> > > > > TK
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > to time the calls, and see what we're dealing with.
> > > > >
> > > > > At least the crashes are now gone!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > >
> > > > > > // Re-connected, so download our init.c
> > > > > > Thread.Sleep(1000);
> > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > KMController.WriteLine("Execute1");
> > > > > > Thread.Sleep(1000);
> > > > > >
> > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Ray,
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > >
> > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3308 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data ââ¬" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the batââ¬Â¦
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Ãâ
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.Ãâ After the disconnect when you are getting the long delays.Ãâ Is theÃâ MainStatus data correct and current?
> > > > > Ãâ
> > > > > Regards
> > > > > TKÃâ
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Ãâ
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'ââ¬Å¡Ãâ ThisÃÆ'ââ¬Å¡Ãâ involves:
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'ââ¬Å¡Ãâ ÃÆ'ââ¬Å¡Ãâ ÃÆ'ââ¬Å¡Ãâ ÃÆ'ââ¬Å¡Ãâ
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > Of course these are typical times.ÃÆ'ââ¬Å¡Ãâ Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡Ãâ
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3309 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
If you do not want to manually perform your offset calculations(tool/origin/CPI) use these methods:: double x = 0.0; double y = 0.0; double z = 0.0; double a = 0.0; double b = 0.0; double c = 0.0; _Controller.Interpreter.ReadCurMachinePosition(ref x, ref y, ref z, ref a, ref b, ref c); data.MachinePOSX = x; data.MachinePOSY = y; data.MachinePOSZ = z; data.MachinePOSA = a; data.MachinePOSB = b; data.MachinePOSC = c; _Controller.Interpreter.ReadCurInterpreterPosition(ref x, ref y, ref z, ref a, ref b, ref c); data.InterpreterPOSX = x; data.InterpreterPOSY = y; data.InterpreterPOSZ = z; data.InterpreterPOSA = a; data.InterpreterPOSB = b; data.InterpreterPOSC = c; The first method will give machine location with CPI calculated, the second will also consider the origin and tool length. -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 2:43 PM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet Brad,
Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote: > > Where are you getting your axis values? > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > Sent: Sunday, January 22, 2012 2:27 PM > To: DynoMotion@yahoogroups.com > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > Brad, > > I have no clue how that code came out formatted like that! Very odd.... > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem. > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > You use colorful language Ray, > > > > > > > > > > > > So here is what I observe:: > > > > > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot. > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: > > > > > > > > Stopwatch sw = new Stopwatch(); > > > > while (true) > > > > { > > > > sw.Reset(); > > > > sw.Start(); > > > > _Controller.UpdateMainStatus(); > > > > sw.Stop(); > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > Thread.Sleep(100); > > > > } > > > > > > > > I am seeing around 15ms round trip. > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. > > > > > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: > > > > while (true) > > > > { > > > > sw.Reset(); > > > > var result = _Controller.WaitToken(100); > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED) > > > > { > > > > sw.Start(); > > > > _Controller.UpdateMainStatus(); > > > > sw.Stop(); > > > > _Controller.ReleaseToken(); > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > } > > > > Thread.Sleep(100); > > > > } > > > > > > > > I get the 218ms off the bat… > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx > > > > > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? > > > > > > > > -Brad Murry > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > Sent: Sunday, January 22, 2012 1:48 PM > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware). > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > Tom, > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > Hi Ray, > > > >  > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current? > > > >  > > > > Regards > > > > TK > > > > > > > > From: himykabibble <jagboy@> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > Sent: Sunday, January 22, 2012 12:21 PM > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > >  > > > > Tom, > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > > > > > DateTime start = DateTime.Now; > > > > KMController.UpdateMainStatus(); > > > > DateTime end = DateTime.Now; > > > > TimeSpan delta = end - start; > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > > > > > Without the disconnect/reconnect, all is fine. > > > > > > > > Any ideas? > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > Hi Ray, > > > > > ÃÆ'‚ > > > > > No it shouldn't take that long. > > > > > ÃÆ'‚ > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚ ThisÃÆ'‚ involves: > > > > > ÃÆ'‚ > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > > > > ÃÆ'‚ > > > > > And then the data transfers at ~ 400KByes per second. > > > > > ÃÆ'‚ > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚ ÃÆ'‚ ÃÆ'‚ ÃÆ'‚ > > > > > ÃÆ'‚ > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > > > > ÃÆ'‚ > > > > > Of course these are typical times.ÃÆ'‚ Worst case might be seconds depending on Windows. > > > > > ÃÆ'‚ > > > > > Regards. > > > > > TK > > > > > ÃÆ'‚ > > > > > ÃÆ'‚ > > > > > From: himykabibble <jagboy@> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > Sent: Sunday, January 22, 2012 11:43 AM > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > ÃÆ'‚ > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try > > > > > to time the calls, and see what we're dealing with. > > > > > > > > > > At least the crashes are now gone! > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > > > > > // Re-connected, so download our init.c > > > > > > Thread.Sleep(1000); > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > > > KMController.WriteLine("Execute1"); > > > > > > Thread.Sleep(1000); > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > > > > > > > > > > > > > > > > > > > > > This is *really* close to working.... > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > > > > > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > > > > > > > > > > > Behalf Of himykabibble > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > >
(Message over 64 KB, truncated)
|
|
Group: DynoMotion |
Message: 3310 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
There are some hard coded path in the DynoMotion APIs that you need to follow. Set this:: _Controller.Interpreter.MainPathRoot = _Data.ConfigDirectory; Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428) -Brad Murry From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 2:51 PM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Brad, > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > Where are you getting your axis values? > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > Sent: Sunday, January 22, 2012 2:27 PM > > To: DynoMotion@yahoogroups.com > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > Brad, > > > > I have no clue how that code came out formatted like that! Very odd.... > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem. > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000. > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > You use colorful language Ray, > > > > > > > > > > > > > > > > > > So here is what I observe:: > > > > > > > > > > > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot. > > > > > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: > > > > > > > > > > > > Stopwatch sw = new Stopwatch(); > > > > > > while (true) > > > > > > { > > > > > > sw.Reset(); > > > > > > sw.Start(); > > > > > > _Controller.UpdateMainStatus(); > > > > > > sw.Stop(); > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > Thread.Sleep(100); > > > > > > } > > > > > > > > > > > > I am seeing around 15ms round trip. > > > > > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. > > > > > > > > > > > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: > > > > > > while (true) > > > > > > { > > > > > > sw.Reset(); > > > > > > var result = _Controller.WaitToken(100); > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED) > > > > > > { > > > > > > sw.Start(); > > > > > > _Controller.UpdateMainStatus(); > > > > > > sw.Stop(); > > > > > > _Controller.ReleaseToken(); > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > } > > > > > > Thread.Sleep(100); > > > > > > } > > > > > > > > > > > > I get the 218ms off the bat… > > > > > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx > > > > > > > > > > > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? > > > > > > > > > > > > -Brad Murry > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > Sent: Sunday, January 22, 2012 1:48 PM > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware). > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > Tom, > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > Hi Ray, > > > > >  > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current? > > > > >  > > > > > Regards > > > > > TK > > > > > > > > > > From: himykabibble <jagboy@> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > Sent: Sunday, January 22, 2012 12:21 PM > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > >  > > > > > Tom, > > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > > > > > > > DateTime start = DateTime.Now; > > > > > KMController.UpdateMainStatus(); > > > > > DateTime end = DateTime.Now; > > > > > TimeSpan delta = end - start; > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > > > > > > > Without the disconnect/reconnect, all is fine. > > > > > > > > > > Any ideas? > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > Hi Ray, > > > > > > ÃÆ'‚ > > > > > > No it shouldn't take that long. > > > > > > ÃÆ'‚ > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚ ThisÃÆ'‚ involves: > > > > > > ÃÆ'‚ > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > > > > > ÃÆ'‚ > > > > > > And then the data transfers at ~ 400KByes per second. > > > > > > ÃÆ'‚ > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚ ÃÆ'‚ ÃÆ'‚ ÃÆ'‚ > > > > > > ÃÆ'‚ > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > > > > > ÃÆ'‚ > > > > > > Of course these are typical times.ÃÆ'‚ Worst case might be seconds depending on Windows. > > > > > > ÃÆ'‚ > > > > > > Regards. > > > > > > TK > > > > > > ÃÆ'‚ > > > > > > ÃÆ'‚ > > > > > > From: himykabibble <jagboy@> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > Sent: Sunday, January 22, 2012 11:43 AM > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > ÃÆ'‚ > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try > > > > > > to time the calls, and see what we're dealing with. > > > > > > > > > > > > At least the crashes are now gone! > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > > > > > > > // Re-connected, so download our init.c > > > > > > > Thread.Sleep(1000); > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > > > > KMController.WriteLine("Execute1"); > > > > > > > Thread.Sleep(1000); > > > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This is *really* close to working.... > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > > > > > > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > > > > > > > > > > > > Behalf Of himykabibble > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT)); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os > > > > > > > > > > > > > > > > > > using: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID); > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1); > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1); > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >
|
|
Group: DynoMotion |
Message: 3311 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Ray,
The MainStatus units are in Counts (or Steps). So maybe your Resolution is 100 counts/inch.
Regards
TK
Group: DynoMotion |
Message: 3312 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad/Ray,
That shouldn't be necessary. The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
If you override that externally I think it can cause a number of problems unless you know what you are doing.
It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it.
Regards
TK
Group: DynoMotion |
Message: 3313 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Nothing changes it unless you explicitly set it. If you do not set it, display the garbage as Ray describes. Where does it discover itself?(file/line no) -Brad From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes Sent: Sunday, January 22, 2012 3:15 PM To: DynoMotion@yahoogroups.com Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet That shouldn't be necessary. The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine. If you override that externally I think it can cause a number of problems unless you know what you are doing. It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it. There are some hard coded path in the DynoMotion APIs that you need to follow. _Controller.Interpreter.MainPathRoot = _Data.ConfigDirectory; Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428) The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > Brad, > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > Where are you getting your axis values? > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > Sent: Sunday, January 22, 2012 2:27 PM > > To: DynoMotion@yahoogroups.com > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > Brad, > > > > I have no clue how that code came out formatted like that! Very odd.... > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem. > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000. > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > You use colorful language Ray, > > > > > > > > > > > > > > > > > > So here is what I observe:: > > > > > > > > > > > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot. > > > > > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: > > > > > > > > > > > > Stopwatch sw = new Stopwatch(); > > > > > > while (true) > > > > > > { > > > > > > sw.Reset(); > > > > > > sw.Start(); > > > > > > _Controller.UpdateMainStatus(); > > > > > > sw.Stop(); > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > Thread.Sleep(100); > > > > > > } > > > > > > > > > > > > I am seeing around 15ms round trip. > > > > > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. > > > > > > > > > > > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: > > > > > > while (true) > > > > > > { > > > > > > sw.Reset(); > > > > > > var result = _Controller.WaitToken(100); > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED) > > > > > > { > > > > > > sw.Start(); > > > > > > _Controller.UpdateMainStatus(); > > > > > > sw.Stop(); > > > > > > _Controller.ReleaseToken(); > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > } > > > > > > Thread.Sleep(100); > > > > > > } > > > > > > > > > > > > I get the 218ms off the bat… > > > > > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx > > > > > > > > > > > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? > > > > > > > > > > > > -Brad Murry > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > Sent: Sunday, January 22, 2012 1:48 PM > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware). > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > Tom, > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > Hi Ray, > > > > >  > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current? > > > > >  > > > > > Regards > > > > > TK > > > > > > > > > > From: himykabibble <jagboy@> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > Sent: Sunday, January 22, 2012 12:21 PM > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > >  > > > > > Tom, > > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > > > > > > > DateTime start = DateTime.Now; > > > > > KMController.UpdateMainStatus(); > > > > > DateTime end = DateTime.Now; > > > > > TimeSpan delta = end - start; > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > > > > > > > Without the disconnect/reconnect, all is fine. > > > > > > > > > > Any ideas? > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > Hi Ray, > > > > > > ÃÆ'‚ > > > > > > No it shouldn't take that long. > > > > > > ÃÆ'‚ > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚ ThisÃÆ'‚ involves: > > > > > > ÃÆ'‚ > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > > > > > ÃÆ'‚ > > > > > > And then the data transfers at ~ 400KByes per second. > > > > > > ÃÆ'‚ > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚ ÃÆ'‚ ÃÆ'‚ ÃÆ'‚ > > > > > > ÃÆ'‚ > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > > > > > ÃÆ'‚ > > > > > > Of course these are typical times.ÃÆ'‚ Worst case might be seconds depending on Windows. > > > > > > ÃÆ'‚ > > > > > > Regards. > > > > > > TK > > > > > > ÃÆ'‚ > > > > > > ÃÆ'‚ > > > > > > From: himykabibble <jagboy@> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > Sent: Sunday, January 22, 2012 11:43 AM > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > ÃÆ'‚ > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try > > > > > > to time the calls, and see what we're dealing with. > > > > > > > > > > > > At least the crashes are now gone! > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > > > > > > > // Re-connected, so download our init.c > > > > > > > Thread.Sleep(1000); > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > > > > KMController.WriteLine("Execute1"); > > > > > > > Thread.Sleep(1000); > > > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created. > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This is *really* close to working.... > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing? > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > > Regards > > > > > > > > > > > > > > > > TK > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad/Tom, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed > > > > > > > > > > > > > > > > > > it out a while back as well. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On > > > > > > > > > > > > > > > > > > Behalf Of himykabibble > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows: > > > > > > > > > > > >
(Message over 64 KB, truncated)
|
|
Group: DynoMotion |
Message: 3314 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
That did it! But what are the others returning? I used these two:
KMController.Interpreter.UserUnitsToInches(KMController.CoordMotion.GetAxisDestination(0));
and
KMController.MainStatus.GetDestination(0);
Both return the same values, which are neither inches nor counts, and return results that are scaled identically (100X commanded distance), even though the axes have different counts/inch. For example, "G0 X1 Y2 Z3" will move to X100 Y200 Z300.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> If you do not want to manually perform your offset calculations(tool/origin/CPI) use these methods::
>
>
>
> double x = 0.0;
>
> double y = 0.0;
>
> double z = 0.0;
>
> double a = 0.0;
>
> double b = 0.0;
>
> double c = 0.0;
>
>
>
> _Controller.Interpreter.ReadCurMachinePosition(ref x, ref y, ref z, ref a, ref b, ref c);
>
>
>
> data.MachinePOSX = x;
>
> data.MachinePOSY = y;
>
> data.MachinePOSZ = z;
>
> data.MachinePOSA = a;
>
> data.MachinePOSB = b;
>
> data.MachinePOSC = c;
>
>
>
> _Controller.Interpreter.ReadCurInterpreterPosition(ref x, ref y, ref z, ref a, ref b, ref c);
>
>
>
> data.InterpreterPOSX = x;
>
> data.InterpreterPOSY = y;
>
> data.InterpreterPOSZ = z;
>
> data.InterpreterPOSA = a;
>
> data.InterpreterPOSB = b;
>
> data.InterpreterPOSC = c;
>
>
>
>
>
> The first method will give machine location with CPI calculated, the second will also consider the origin and tool length.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:43 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data âââ¬" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the batâââ¬Ã¦
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'ââ¬Å¡
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'ââ¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'ââ¬Å¡ Is theÃÆ'ââ¬Å¡ MainStatus data correct and current?
> > > > > ÃÆ'ââ¬Å¡
> > > > > Regards
> > > > > TKÃÆ'ââ¬Å¡
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'ââ¬Å¡
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ThisÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ involves:
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > Of course these are typical times.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3315 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
Nope, here's my init code (unless there's something I'm missing?):
KMController.CoordMotion.MotionParams.CountsPerInchX = 20000;
KMController.CoordMotion.MotionParams.MaxVelX = 70000;
KMController.CoordMotion.MotionParams.MaxAccelX = 500000;
KMController.WriteLine("EnableAxis0");
KMController.CoordMotion.MotionParams.CountsPerInchY = 20000;
KMController.CoordMotion.MotionParams.MaxVelY = 70000;
KMController.CoordMotion.MotionParams.MaxAccelY = 500000;
KMController.WriteLine("EnableAxis1");
KMController.CoordMotion.MotionParams.CountsPerInchZ = 20320;
KMController.CoordMotion.MotionParams.MaxVelZ = 51000;
KMController.CoordMotion.MotionParams.MaxAccelZ = 700000;
KMController.WriteLine("EnableAxis2");
KMController.CoordMotion.MotionParams.CountsPerInchA = 96000;
KMController.CoordMotion.MotionParams.MaxVelA = 48000;
KMController.CoordMotion.MotionParams.MaxAccelA = 20000;
KMController.WriteLine("EnableAxis3");
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Ray,
> Â
> The MainStatus units are in Counts (or Steps). So maybe your Resolution is 100 counts/inch.
> Â
> Regards
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 1:42 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data âââ¬" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the batâââ¬Ã¦
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'ââ¬Å¡
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'ââ¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'ââ¬Å¡ Is theÃÆ'ââ¬Å¡ MainStatus data correct and current?
> > > > > ÃÆ'ââ¬Å¡
> > > > > Regards
> > > > > TKÃÆ'ââ¬Å¡
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'ââ¬Å¡
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ThisÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ involves:
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > Of course these are typical times.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3316 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Hi Brad,
It should be set in \KMotionDLL\KMotionApp.cpp line ~98
Regards
TK
Group: DynoMotion |
Message: 3317 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Brad/Ray,
> Â
> That shouldn't be necessary.  The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> Â
> If you override that externally I think it can cause a number of problems unless you know what you are doing.
> Â
> It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it.
> Â
> Regards
> TK
> Â
>
> From: Brad Murry <bradodarb@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:01 PM
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> There are some hard coded path in the DynoMotion APIs that you need to follow.
> Â
> Set this::
> Â Â Â Â _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> Â
> Â
> Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> Â
> -Brad Murry
> Â
> From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:51 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> Â
> Â
> The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > Where are you getting your axis values?
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 2:27 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > I have no clue how that code came out formatted like that! Very odd....
> > >
> > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > >
> > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > You use colorful language Ray,
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So here is what I observe::
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > #1 UpdateMainStatus() is not performing the lock - get data âââ¬" release as I thought, just a straight shot.
> > > >
> > > >
> > > >
> > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > >
> > > >
> > > >
> > > > Stopwatch sw = new Stopwatch();
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I am seeing around 15ms round trip.
> > > >
> > > >
> > > >
> > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > var result = _Controller.WaitToken(100);
> > > >
> > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > >
> > > > {
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > _Controller.ReleaseToken();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > }
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I get the 218ms off the batâââ¬Ã¦
> > > >
> > > >
> > > >
> > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > >
> > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Tom,
> > > > >
> > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'ââ¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'ââ¬Å¡ Is theÃÆ'ââ¬Å¡ MainStatus data correct and current?
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Regards
> > > > > > TKÃÆ'ââ¬Å¡
> > > > > >
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Tom,
> > > > > >
> > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > >
> > > > > > DateTime start = DateTime.Now;
> > > > > > KMController.UpdateMainStatus();
> > > > > > DateTime end = DateTime.Now;
> > > > > > TimeSpan delta = end - start;
> > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > >
> > > > > > Without the disconnect/reconnect, all is fine.
> > > > > >
> > > > > > Any ideas?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > No it shouldn't take that long.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ThisÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ involves:
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > Of course these are typical times.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > Regards.
> > > > > > > TK
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> going to try
> > > > > > > to time the calls, and see what we're dealing with.
> > > > > > >
> > > > > > > At least the crashes are now gone!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > >
> > > > > > > > // Re-connected, so download our init.c
> > > > > > > > Thread.Sleep(1000);
> > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > Thread.Sleep(1000);
> > > > > > > >
> > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3318 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Hi Ray,
No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid.
I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
Regards
TK
Group: DynoMotion |
Message: 3319 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
I'm now very confused about this.... Why do we have to pass a full path to the interpreter, if it's going to refuse to run files from other than specific paths? Why does it care where the file is? It appears to me it is looking ONLY relative to the current directory (which, for other reasons, is forced to C:\KMotion428)?
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
>
>
> Hi Brad,
> Â
> It should be set in \KMotionDLL\KMotionApp.cpp line ~98
> Â
> Regards
> TK
> Â
> Â
> From: Brad Murry <bradodarb@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:19 PM
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> Nothing changes it unless you explicitly set it.
> Â
> If you do not set it, display the garbage as Ray describes. Where does it discover itself?(file/line no)
> Â
> -Brad
> Â
> From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes
> Sent: Sunday, January 22, 2012 3:15 PM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> Â
> Â
> Brad/Ray,
> Â
> That shouldn't be necessary.  The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> Â
> If you override that externally I think it can cause a number of problems unless you know what you are doing.
> Â
> It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it.
> Â
> Regards
> TK
> Â
> Â
> From:Brad Murry <bradodarb@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:01 PM
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> Â
> Â
> There are some hard coded path in the DynoMotion APIs that you need to follow.
> Â
> Set this::
> Â Â Â Â _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> Â
> Â
> Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> Â
> -Brad Murry
> Â
> From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:51 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> Â
> Â
> The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > Where are you getting your axis values?
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 2:27 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > I have no clue how that code came out formatted like that! Very odd....
> > >
> > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > >
> > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > You use colorful language Ray,
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So here is what I observe::
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > #1 UpdateMainStatus() is not performing the lock - get data âââ¬" release as I thought, just a straight shot.
> > > >
> > > >
> > > >
> > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > >
> > > >
> > > >
> > > > Stopwatch sw = new Stopwatch();
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I am seeing around 15ms round trip.
> > > >
> > > >
> > > >
> > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > var result = _Controller.WaitToken(100);
> > > >
> > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > >
> > > > {
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > _Controller.ReleaseToken();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > }
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I get the 218ms off the batâââ¬Ã¦
> > > >
> > > >
> > > >
> > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > >
> > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Tom,
> > > > >
> > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'ââ¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'ââ¬Å¡ Is theÃÆ'ââ¬Å¡ MainStatus data correct and current?
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Regards
> > > > > > TKÃÆ'ââ¬Å¡
> > > > > >
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡
> > > > > > Tom,
> > > > > >
> > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > >
> > > > > > DateTime start = DateTime.Now;
> > > > > > KMController.UpdateMainStatus();
> > > > > > DateTime end = DateTime.Now;
> > > > > > TimeSpan delta = end - start;
> > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > >
> > > > > > Without the disconnect/reconnect, all is fine.
> > > > > >
> > > > > > Any ideas?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > No it shouldn't take that long.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ThisÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ involves:
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > Of course these are typical times.ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > Regards.
> > > > > > > TK
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡
> > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> going to try
> > > > > > > to time the calls, and see what we're dealing with.
> > > > > > >
> > > > > > > At least the crashes are now gone!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > >
> > > > > > > > // Re-connected, so download our init.c
> > > > > > > > Thread.Sleep(1000);
> > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > Thread.Sleep(1000);
> > > > > > > >
> > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ââ⬠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> Â
>
|
|
Group: DynoMotion |
Message: 3320 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
> Â
> No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> Â
> It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid.
> Â
> I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> Â
> Regards
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:29 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> Tom,
>
> I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Brad/Ray,
> > ÃÂ
> > That shouldn't be necessary.ÃÂ ÃÂ The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > ÃÂ
> > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > ÃÂ
> > It should already point to the root directory where KMotionDLL is located.ÃÂ If not, remove whatever changed it.
> > ÃÂ
> > Regards
> > TK
> > ÃÂ
> >
> > From: Brad Murry <bradodarb@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 2:01 PM
> > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > ÃÂ
> > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > ÃÂ
> > Set this::
> > ÃÂ ÃÂ ÃÂ ÃÂ _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > ÃÂ
> > ÃÂ
> > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > ÃÂ
> > -Brad Murry
> > ÃÂ
> > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:51 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > ÃÂ
> > ÃÂ
> > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad,
> > >
> > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > Where are you getting your axis values?
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > I have no clue how that code came out formatted like that! Very odd....
> > > >
> > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > >
> > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > You use colorful language Ray,
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > So here is what I observe::
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'ââââ¬Å¡Ã¬" release as I thought, just a straight shot.
> > > > >
> > > > >
> > > > >
> > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > >
> > > > >
> > > > >
> > > > > Stopwatch sw = new Stopwatch();
> > > > >
> > > > > while (true)
> > > > >
> > > > > {
> > > > >
> > > > > sw.Reset();
> > > > >
> > > > > sw.Start();
> > > > >
> > > > > _Controller.UpdateMainStatus();
> > > > >
> > > > > sw.Stop();
> > > > >
> > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > >
> > > > > Thread.Sleep(100);
> > > > >
> > > > > }
> > > > >
> > > > >
> > > > >
> > > > > I am seeing around 15ms round trip.
> > > > >
> > > > >
> > > > >
> > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > >
> > > > > while (true)
> > > > >
> > > > > {
> > > > >
> > > > > sw.Reset();
> > > > >
> > > > > var result = _Controller.WaitToken(100);
> > > > >
> > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > >
> > > > > {
> > > > >
> > > > > sw.Start();
> > > > >
> > > > > _Controller.UpdateMainStatus();
> > > > >
> > > > > sw.Stop();
> > > > >
> > > > > _Controller.ReleaseToken();
> > > > >
> > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > >
> > > > > }
> > > > >
> > > > > Thread.Sleep(100);
> > > > >
> > > > > }
> > > > >
> > > > >
> > > > >
> > > > > I get the 218ms off the batÃÆ'ââââ¬Å¡Ã¬Ãâæ
> > > > >
> > > > >
> > > > >
> > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > >
> > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Tom,
> > > > > >
> > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Ã'âââ¬Ã
¡ After the disconnect when you are getting the long delays.ÃÆ'Ã'âââ¬Ã
¡ Is theÃÆ'Ã'âââ¬Ã
¡ MainStatus data correct and current?
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > Regards
> > > > > > > TKÃÆ'Ã'âââ¬Ã
¡
> > > > > > >
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > Tom,
> > > > > > >
> > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > >
> > > > > > > DateTime start = DateTime.Now;
> > > > > > > KMController.UpdateMainStatus();
> > > > > > > DateTime end = DateTime.Now;
> > > > > > > TimeSpan delta = end - start;
> > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > >
> > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > >
> > > > > > > Any ideas?
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Ray,
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > No it shouldn't take that long.
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ThisÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ involves:
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > Of course these are typical times.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ Worst case might be seconds depending on Windows.
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > Regards.
> > > > > > > > TK
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > going to try
> > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > >
> > > > > > > > At least the crashes are now gone!
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > >
> > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > Thread.Sleep(1000);
> > > > > > > > >
> > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬
> 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦Ã
> Æ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3321 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> > Â
> > No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > Â
> > It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid.
> > Â
> > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > Â
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 2:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > Â
> > Tom,
> >
> > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Brad/Ray,
> > > ÃÂ
> > > That shouldn't be necessary.ÃÂ ÃÂ The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > ÃÂ
> > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > ÃÂ
> > > It should already point to the root directory where KMotionDLL is located.ÃÂ If not, remove whatever changed it.
> > > ÃÂ
> > > Regards
> > > TK
> > > ÃÂ
> > >
> > > From: Brad Murry <bradodarb@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 2:01 PM
> > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > ÃÂ
> > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > ÃÂ
> > > Set this::
> > > ÃÂ ÃÂ ÃÂ ÃÂ _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > ÃÂ
> > > ÃÂ
> > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > ÃÂ
> > > -Brad Murry
> > > ÃÂ
> > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 2:51 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > ÃÂ
> > > ÃÂ
> > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad,
> > > >
> > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > Where are you getting your axis values?
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > >
> > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > >
> > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > You use colorful language Ray,
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > So here is what I observe::
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'ââââ¬Å¡Ã¬" release as I thought, just a straight shot.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > >
> > > > > >
> > > > > >
> > > > > > Stopwatch sw = new Stopwatch();
> > > > > >
> > > > > > while (true)
> > > > > >
> > > > > > {
> > > > > >
> > > > > > sw.Reset();
> > > > > >
> > > > > > sw.Start();
> > > > > >
> > > > > > _Controller.UpdateMainStatus();
> > > > > >
> > > > > > sw.Stop();
> > > > > >
> > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > >
> > > > > > Thread.Sleep(100);
> > > > > >
> > > > > > }
> > > > > >
> > > > > >
> > > > > >
> > > > > > I am seeing around 15ms round trip.
> > > > > >
> > > > > >
> > > > > >
> > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > >
> > > > > > while (true)
> > > > > >
> > > > > > {
> > > > > >
> > > > > > sw.Reset();
> > > > > >
> > > > > > var result = _Controller.WaitToken(100);
> > > > > >
> > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > >
> > > > > > {
> > > > > >
> > > > > > sw.Start();
> > > > > >
> > > > > > _Controller.UpdateMainStatus();
> > > > > >
> > > > > > sw.Stop();
> > > > > >
> > > > > > _Controller.ReleaseToken();
> > > > > >
> > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > >
> > > > > > }
> > > > > >
> > > > > > Thread.Sleep(100);
> > > > > >
> > > > > > }
> > > > > >
> > > > > >
> > > > > >
> > > > > > I get the 218ms off the batÃÆ'ââââ¬Å¡Ã¬Ãâæ
> > > > > >
> > > > > >
> > > > > >
> > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > >
> > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Tom,
> > > > > > >
> > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Ray,
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Ã'âââ¬Ã
¡ After the disconnect when you are getting the long delays.ÃÆ'Ã'âââ¬Ã
¡ Is theÃÆ'Ã'âââ¬Ã
¡ MainStatus data correct and current?
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > Regards
> > > > > > > > TKÃÆ'Ã'âââ¬Ã
¡
> > > > > > > >
> > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > >
> > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > TimeSpan delta = end - start;
> > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > >
> > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > >
> > > > > > > > Any ideas?
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > No it shouldn't take that long.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ThisÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ involves:
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > Of course these are typical times.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ Worst case might be seconds depending on Windows.
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > Regards.
> > > > > > > > > TK
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > going to try
> > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > >
> > > > > > > > > At least the crashes are now gone!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > >
> > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > >
> > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬
> > 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦Ã
> > Æ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3322 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > Â
> > > It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid.
> > > Â
> > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > Â
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 2:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Tom,
> > >
> > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Brad/Ray,
> > > > ÃÂ
> > > > That shouldn't be necessary.ÃÂ ÃÂ The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > ÃÂ
> > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > ÃÂ
> > > > It should already point to the root directory where KMotionDLL is located.ÃÂ If not, remove whatever changed it.
> > > > ÃÂ
> > > > Regards
> > > > TK
> > > > ÃÂ
> > > >
> > > > From: Brad Murry <bradodarb@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > ÃÂ
> > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > ÃÂ
> > > > Set this::
> > > > ÃÂ ÃÂ ÃÂ ÃÂ _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > ÃÂ
> > > > ÃÂ
> > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > ÃÂ
> > > > -Brad Murry
> > > > ÃÂ
> > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > ÃÂ
> > > > ÃÂ
> > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Where are you getting your axis values?
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > >
> > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > >
> > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > You use colorful language Ray,
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So here is what I observe::
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'ââââ¬Å¡Ã¬" release as I thought, just a straight shot.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > >
> > > > > > > while (true)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Reset();
> > > > > > >
> > > > > > > sw.Start();
> > > > > > >
> > > > > > > _Controller.UpdateMainStatus();
> > > > > > >
> > > > > > > sw.Stop();
> > > > > > >
> > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > >
> > > > > > > Thread.Sleep(100);
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I am seeing around 15ms round trip.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > >
> > > > > > > while (true)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Reset();
> > > > > > >
> > > > > > > var result = _Controller.WaitToken(100);
> > > > > > >
> > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Start();
> > > > > > >
> > > > > > > _Controller.UpdateMainStatus();
> > > > > > >
> > > > > > > sw.Stop();
> > > > > > >
> > > > > > > _Controller.ReleaseToken();
> > > > > > >
> > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > > Thread.Sleep(100);
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I get the 218ms off the batÃÆ'ââââ¬Å¡Ã¬Ãâæ
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > >
> > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Ã'âââ¬Ã
¡ After the disconnect when you are getting the long delays.ÃÆ'Ã'âââ¬Ã
¡ Is theÃÆ'Ã'âââ¬Ã
¡ MainStatus data correct and current?
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > Regards
> > > > > > > > > TKÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > >
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > >
> > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > >
> > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > >
> > > > > > > > > Any ideas?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ThisÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ involves:
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > Of course these are typical times.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > Regards.
> > > > > > > > > > TK
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡
> > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > > going to try
> > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > >
> > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > >
> > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > >
> > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬
> > > 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦Ã
> > > Æ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3323 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Hi Brad,
I think you are right I see a problem on my end. Actually there are two MainPathRoots for some reason. One in KMotionDLL and one in Interpreter.CoordMotion. The one in the CoordMotion Constructor is using a different method which uses where the .exe is located rather than the DLL. I usually target my apps into the same bin directory (C:\KMotion428\KMotion\Release) so it works for me. But if your App is located somewhere else it won't work. It also looking to go back up the directory structure above the KMotion directory and if it doesn't find the KMotion directory it leaves the Path null.
I think the reason it work when Ray selects a GCode file from C:\KMotion428\GCode Files is because the current directory happens to be right for it to find it without a path.
I'll see if I can fix that.
Regards
TK
Group: DynoMotion |
Message: 3325 |
From: Tom Kerekes |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
100 is the default value. So either they are not really being set or they are bein set in a different instance.
TK
Group: DynoMotion |
Message: 3328 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Ray, You need to set the CPI/Accels/Vels separately on the axis(for jogging, etc…) and also for the interpreter. Maybe Tom can add a flag to the GCodeInterpreter to use current axis values to reduce some of the duplication…? Here is how I init the interpreter in MM:: var mfgdata = _InterpreterData_DM; _Controller.WriteLine(String.Format("DefineCS = {0} {1} {2} {3} {4} {5}", mfgdata.XAxisMapIndex , mfgdata.YAxisMapIndex, mfgdata.ZAxisMapIndex, mfgdata.AAxisMapIndex, mfgdata.BAxisMapIndex, mfgdata.CAxisMapIndex)); _Controller.Interpreter.TPLookahead = mfgdata.TPLookahead; _Controller.Interpreter.CollinearTolerance = mfgdata.CollinearTolerance; _Controller.Interpreter.CornerTolerance = mfgdata.CornerTolerance; _Controller.Interpreter.FacetAngle = mfgdata.FacetAngle; _Controller.Interpreter.BreakAngle = mfgdata.BreakAngle; _Controller.Interpreter.MaxAccelX = mfgdata.MaxAccel_X; _Controller.Interpreter.MaxAccelY = mfgdata.MaxAccel_Y; _Controller.Interpreter.MaxAccelZ = mfgdata.MaxAccel_Z; _Controller.Interpreter.MaxAccelA = mfgdata.MaxAccel_A; _Controller.Interpreter.MaxAccelB = mfgdata.MaxAccel_B; _Controller.Interpreter.MaxAccelC = mfgdata.MaxAccel_C; _Controller.Interpreter.MaxVelX = mfgdata.MaxVelocity_X; _Controller.Interpreter.MaxVelY = mfgdata.MaxVelocity_Y; _Controller.Interpreter.MaxVelZ = mfgdata.MaxVelocity_Z; _Controller.Interpreter.MaxVelA = mfgdata.MaxVelocity_A; _Controller.Interpreter.MaxVelB = mfgdata.MaxVelocity_B; _Controller.Interpreter.MaxVelC = mfgdata.MaxVelocity_C; _Controller.Interpreter.CountsPerInchX = mfgdata.CountsPerInch_X; _Controller.Interpreter.CountsPerInchY = mfgdata.CountsPerInch_Y; _Controller.Interpreter.CountsPerInchZ = mfgdata.CountsPerInch_Z; _Controller.Interpreter.CountsPerInchA = mfgdata.CountsPerInch_A; _Controller.Interpreter.CountsPerInchB = mfgdata.CountsPerInch_B; _Controller.Interpreter.CountsPerInchC = mfgdata.CountsPerInch_C; _Controller.Interpreter.InitializeOnExecute = false; _Controller.Interpreter.InitializeInterpreter(); Notice the last lines (InitializeOnExecute and InitializeInterpreter), I set my tool table programmatically via strongly-typed XML data rather than use the EMC tool file. This allows that to work. From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes Sent: Sunday, January 22, 2012 4:41 PM To: DynoMotion@yahoogroups.com Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet 100 is the default value. So either they are not really being set or they are bein set in a different instance. Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote: > > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine. > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > Tom, > > > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file?? > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > > > Hi Ray, > > >  > > > No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot. > > >  > > > It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid. > > >  > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version). > > >  > > > Regards > > > TK > > > > > > From: himykabibble <jagboy@> > > > To: DynoMotion@yahoogroups.com > > > Sent: Sunday, January 22, 2012 2:29 PM > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > >  > > > Tom, > > > > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > > > > > Brad/Ray, > > > >  > > > > That shouldn't be necessary.  The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine. > > > >  > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing. > > > >  > > > > It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it. > > > >  > > > > Regards > > > > TK > > > >  > > > > > > > > From: Brad Murry <bradodarb@> > > > > To: DynoMotion@yahoogroups.com > > > > Sent: Sunday, January 22, 2012 2:01 PM > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > >  > > > > There are some hard coded path in the DynoMotion APIs that you need to follow. > > > >  > > > > Set this:: > > > >     _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory; > > > >  > > > >  > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428) > > > >  > > > > -Brad Murry > > > >  > > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > > > Sent: Sunday, January 22, 2012 2:51 PM > > > > To: DynoMotion@yahoogroups.com > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > >  > > > >  > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls. > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > Brad, > > > > > > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result. > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > Where are you getting your axis values? > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > > > > > Sent: Sunday, January 22, 2012 2:27 PM > > > > > > To: DynoMotion@yahoogroups.com > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > I have no clue how that code came out formatted like that! Very odd.... > > > > > > > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem. > > > > > > > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000. > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > You use colorful language Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > So here is what I observe:: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'¢â‚¬" release as I thought, just a straight shot. > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Stopwatch sw = new Stopwatch(); > > > > > > > > > > > > > > while (true) > > > > > > > > > > > > > > { > > > > > > > > > > > > > > sw.Reset(); > > > > > > > > > > > > > > sw.Start(); > > > > > > > > > > > > > > _Controller.UpdateMainStatus(); > > > > > > > > > > > > > > sw.Stop(); > > > > > > > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > > > > > > > > > Thread.Sleep(100); > > > > > > > > > > > > > > } > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am seeing around 15ms round trip. > > > > > > > > > > > > > > > > > > > > > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: > > > > > > > > > > > > > > while (true) > > > > > > > > > > > > > > { > > > > > > > > > > > > > > sw.Reset(); > > > > > > > > > > > > > > var result = _Controller.WaitToken(100); > > > > > > > > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED) > > > > > > > > > > > > > > { > > > > > > > > > > > > > > sw.Start(); > > > > > > > > > > > > > > _Controller.UpdateMainStatus(); > > > > > > > > > > > > > > sw.Stop(); > > > > > > > > > > > > > > _Controller.ReleaseToken(); > > > > > > > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > > > > > > > > > } > > > > > > > > > > > > > > Thread.Sleep(100); > > > > > > > > > > > > > > } > > > > > > > > > > > > > > > > > > > > > > > > > > > > I get the 218ms off the batÃÆ'¢â‚¬Â¦ > > > > > > > > > > > > > > > > > > > > > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: > > > > > > > > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware). > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > ÃÆ'Æ'‚ > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'‚ After the disconnect when you are getting the long delays.ÃÆ'Æ'‚ Is theÃÆ'Æ'‚ MainStatus data correct and current? > > > > > > > > > ÃÆ'Æ'‚ > > > > > > > > > Regards > > > > > > > > > TKÃÆ'Æ'‚ > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'‚ > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > > > > > > > > > > > > > > > DateTime start = DateTime.Now; > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > DateTime end = DateTime.Now; > > > > > > > > > TimeSpan delta = end - start; > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > > > > > > > > > > > > > > > Without the disconnect/reconnect, all is fine. > > > > > > > > > > > > > > > > > > Any ideas? > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > No it shouldn't take that long. > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ThisÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ involves: > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > And then the data transfers at ~ 400KByes per second. > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ Worst case might be seconds depending on Windows. > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > Regards. > > > > > > > > > > TK > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm > > > > going to try > > > > > > > > > > to time the calls, and see what we're dealing with. > > > > > > > > > > > > > > > > > > > > At least the crashes are now gone! > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > > > > > > > > > > > > > > > // Re-connected, so download our init.c > > > > > > > > > > > Thread.Sleep(1000); > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > > > > > > > > KMController.WriteLine("Execute1"); > > > > > > > > > > > Thread.Sleep(1000); > > > > > > > > > > > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > >
(Message over 64 KB, truncated)
|
|
Group: DynoMotion |
Message: 3329 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Tom,
Sounds logical, but there is only one instance, and when I set a breakpoint in the init routine, they are getting correctly set. When I set a breakpoint in the method that gets the axis positions, and in the InterpreterDone callback, they are also correct in the KM_Controller object. But, the positions/counts are wrong, so I think it is something in dotNet that is broken, and not passing them along to the interpreter.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> 100 is the default value. So either they are not really being set or they are bein set in a different instance.
> Â
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 3:27 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
> Â
> Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > ÃÂ
> > > > No.ÃÂ When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.ÃÂ It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > > ÃÂ
> > > > It has nothing to do with the file you are trying to execute.ÃÂ It is complaining because it can't find its internal files in the expected places.ÃÂ Or I guess more specifically MainPathRoot is somehow invalid.
> > > > ÃÂ
> > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > > ÃÂ
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > ÃÂ
> > > > Tom,
> > > >
> > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Brad/Ray,
> > > > > ÃâÃÂ
> > > > > That shouldn't be necessary.ÃâàÃâàThe KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > > ÃâÃÂ
> > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > > ÃâÃÂ
> > > > > It should already point to the root directory where KMotionDLL is located.ÃâàIf not, remove whatever changed it.
> > > > > ÃâÃÂ
> > > > > Regards
> > > > > TK
> > > > > ÃâÃÂ
> > > > >
> > > > > From: Brad Murry <bradodarb@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃâÃÂ
> > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > > ÃâÃÂ
> > > > > Set this::
> > > > > ÃâàÃâàÃâàÃâà_Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > > ÃâÃÂ
> > > > > ÃâÃÂ
> > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > > ÃâÃÂ
> > > > > -Brad Murry
> > > > > ÃâÃÂ
> > > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > ÃâÃÂ
> > > > > ÃâÃÂ
> > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Where are you getting your axis values?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > >
> > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > >
> > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > You use colorful language Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So here is what I observe::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì" release as I thought, just a straight shot.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am seeing around 15ms round trip.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > >
> > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > _Controller.ReleaseToken();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I get the 218ms off the batÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâæ
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > >
> > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ After the disconnect when you are getting the long delays.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ Is theÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ MainStatus data correct and current?
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > Regards
> > > > > > > > > > TKÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > >
> > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > >
> > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > >
> > > > > > > > > > Any ideas?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ThisÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ involves:
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > Of course these are typical times.ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > Regards.
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so
> long? I'm
> > > > > going to try
> > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > >
> > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > >
> > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > >
> > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì
> > > >
> 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ
> ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâÃ
> ¬ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'
> > > > Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì
> 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃâÃ
> ¢ÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì
> 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃâÃ
> ¢ÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì
> 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'âââ¬Ã 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃâÃ
> ¢ÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Â 'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3331 |
From: Brad Murry |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
“I think it is something in dotNet that is broken,” Not the case here, Ray. Did you use my directions? -Brad From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble Sent: Sunday, January 22, 2012 5:06 PM To: DynoMotion@yahoogroups.com Subject: [DynoMotion] Re: Twiddling Bits in dotNet Tom,
Sounds logical, but there is only one instance, and when I set a breakpoint in the init routine, they are getting correctly set. When I set a breakpoint in the method that gets the axis positions, and in the InterpreterDone callback, they are also correct in the KM_Controller object. But, the positions/counts are wrong, so I think it is something in dotNet that is broken, and not passing them along to the interpreter.
Regards, Ray L.
--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote: > > 100 is the default value. So either they are not really being set or they are bein set in a different instance. >  > TK > > From: himykabibble <jagboy@...> > To: DynoMotion@yahoogroups.com > Sent: Sunday, January 22, 2012 3:27 PM > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > >  > Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly? > > Regards, > Ray L. > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine. > > > > Regards, > > Ray L. > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > Tom, > > > > > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file?? > > > > > > Regards, > > > Ray L. > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > > > > > Hi Ray, > > > >  > > > > No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot. > > > >  > > > > It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid. > > > >  > > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version). > > > >  > > > > Regards > > > > TK > > > > > > > > From: himykabibble <jagboy@> > > > > To: DynoMotion@yahoogroups.com > > > > Sent: Sunday, January 22, 2012 2:29 PM > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > >  > > > > Tom, > > > > > > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory? > > > > > > > > Regards, > > > > Ray L. > > > > > > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote: > > > > > > > > > > Brad/Ray, > > > > >  > > > > > That shouldn't be necessary.  The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine. > > > > >  > > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing. > > > > >  > > > > > It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it. > > > > >  > > > > > Regards > > > > > TK > > > > >  > > > > > > > > > > From: Brad Murry <bradodarb@> > > > > > To: DynoMotion@yahoogroups.com > > > > > Sent: Sunday, January 22, 2012 2:01 PM > > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > >  > > > > > There are some hard coded path in the DynoMotion APIs that you need to follow. > > > > >  > > > > > Set this:: > > > > >     _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory; > > > > >  > > > > >  > > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428) > > > > >  > > > > > -Brad Murry > > > > >  > > > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > > > > Sent: Sunday, January 22, 2012 2:51 PM > > > > > To: DynoMotion@yahoogroups.com > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > >  > > > > >  > > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls. > > > > > > > > > > Regards, > > > > > Ray L. > > > > > > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > Brad, > > > > > > > > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result. > > > > > > > > > > > > Regards, > > > > > > Ray L. > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > Where are you getting your axis values? > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble > > > > > > > Sent: Sunday, January 22, 2012 2:27 PM > > > > > > > To: DynoMotion@yahoogroups.com > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > I have no clue how that code came out formatted like that! Very odd.... > > > > > > > > > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem. > > > > > > > > > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000. > > > > > > > > > > > > > > Regards, > > > > > > > Ray L. > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > You use colorful language Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > So here is what I observe:: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬" release as I thought, just a straight shot. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code:: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Stopwatch sw = new Stopwatch(); > > > > > > > > > > > > > > > > while (true) > > > > > > > > > > > > > > > > { > > > > > > > > > > > > > > > > sw.Reset(); > > > > > > > > > > > > > > > > sw.Start(); > > > > > > > > > > > > > > > > _Controller.UpdateMainStatus(); > > > > > > > > > > > > > > > > sw.Stop(); > > > > > > > > > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > > > > > > > > > > > Thread.Sleep(100); > > > > > > > > > > > > > > > > } > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I am seeing around 15ms round trip. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so:: > > > > > > > > > > > > > > > > while (true) > > > > > > > > > > > > > > > > { > > > > > > > > > > > > > > > > sw.Reset(); > > > > > > > > > > > > > > > > var result = _Controller.WaitToken(100); > > > > > > > > > > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED) > > > > > > > > > > > > > > > > { > > > > > > > > > > > > > > > > sw.Start(); > > > > > > > > > > > > > > > > _Controller.UpdateMainStatus(); > > > > > > > > > > > > > > > > sw.Stop(); > > > > > > > > > > > > > > > > _Controller.ReleaseToken(); > > > > > > > > > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds)); > > > > > > > > > > > > > > > > } > > > > > > > > > > > > > > > > Thread.Sleep(100); > > > > > > > > > > > > > > > > } > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I get the 218ms off the batÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch:: > > > > > > > > > > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware). > > > > > > > > > > > > > > > > Regards, > > > > > > > > Ray L. > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay. > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Is theÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ MainStatus data correct and current? > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > Regards > > > > > > > > > > TKÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > Tom, > > > > > > > > > > > > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code: > > > > > > > > > > > > > > > > > > > > DateTime start = DateTime.Now; > > > > > > > > > > KMController.UpdateMainStatus(); > > > > > > > > > > DateTime end = DateTime.Now; > > > > > > > > > > TimeSpan delta = end - start; > > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n"); > > > > > > > > > > > > > > > > > > > > Without the disconnect/reconnect, all is fine. > > > > > > > > > > > > > > > > > > > > Any ideas? > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote: > > > > > > > > > > > > > > > > > > > > > > Hi Ray, > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > No it shouldn't take that long. > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ThisÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ involves: > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > And then the data transfers at ~ 400KByes per second. > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit. > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Worst case might be seconds depending on Windows. > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > Regards. > > > > > > > > > > > TK > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > From: himykabibble <jagboy@> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ > > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so > long? I'm > > > > > going to try > > > > > > > > > > > to time the calls, and see what we're dealing with. > > > > > > > > > > > > > > > > > > > > > > At least the crashes are now gone! > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using: > > > > > > > > > > > > > > > > > > > > > > > > // Re-connected, so download our init.c > > > > > > > > > > > > Thread.Sleep(1000); > > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c"; > > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true); > > > > > > > > > > > > KMController.WriteLine("Execute1"); > > > > > > > > > > > > Thread.Sleep(1000); > > > > > > > > > > > > > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event. > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display. > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks! > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > It happens one time, in the form constructor.... > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible??? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Ray, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Brad, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > > Ray L. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tom/Ray > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ > > > > > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'ââ‚ > ¬Â¦ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚ > ¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ' > > > > Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:
|
|
Group: DynoMotion |
Message: 3332 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
OK, that took care of the scaling issue!
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Ray,
>
>
>
> You need to set the CPI/Accels/Vels separately on the axis(for jogging, etcâ¦) and also for the interpreter.
>
>
>
> Maybe Tom can add a flag to the GCodeInterpreter to use current axis values to reduce some of the duplication�
>
>
>
> Here is how I init the interpreter in MM::
>
> var mfgdata = _InterpreterData_DM;
>
> _Controller.WriteLine(String.Format("DefineCS = {0} {1} {2} {3} {4} {5}", mfgdata.XAxisMapIndex
>
> , mfgdata.YAxisMapIndex, mfgdata.ZAxisMapIndex, mfgdata.AAxisMapIndex, mfgdata.BAxisMapIndex, mfgdata.CAxisMapIndex));
>
>
>
> _Controller.Interpreter.TPLookahead = mfgdata.TPLookahead;
>
> _Controller.Interpreter.CollinearTolerance = mfgdata.CollinearTolerance;
>
> _Controller.Interpreter.CornerTolerance = mfgdata.CornerTolerance;
>
> _Controller.Interpreter.FacetAngle = mfgdata.FacetAngle;
>
> _Controller.Interpreter.BreakAngle = mfgdata.BreakAngle;
>
>
>
> _Controller.Interpreter.MaxAccelX = mfgdata.MaxAccel_X;
>
> _Controller.Interpreter.MaxAccelY = mfgdata.MaxAccel_Y;
>
> _Controller.Interpreter.MaxAccelZ = mfgdata.MaxAccel_Z;
>
> _Controller.Interpreter.MaxAccelA = mfgdata.MaxAccel_A;
>
> _Controller.Interpreter.MaxAccelB = mfgdata.MaxAccel_B;
>
> _Controller.Interpreter.MaxAccelC = mfgdata.MaxAccel_C;
>
> _Controller.Interpreter.MaxVelX = mfgdata.MaxVelocity_X;
>
> _Controller.Interpreter.MaxVelY = mfgdata.MaxVelocity_Y;
>
> _Controller.Interpreter.MaxVelZ = mfgdata.MaxVelocity_Z;
>
> _Controller.Interpreter.MaxVelA = mfgdata.MaxVelocity_A;
>
> _Controller.Interpreter.MaxVelB = mfgdata.MaxVelocity_B;
>
> _Controller.Interpreter.MaxVelC = mfgdata.MaxVelocity_C;
>
> _Controller.Interpreter.CountsPerInchX = mfgdata.CountsPerInch_X;
>
> _Controller.Interpreter.CountsPerInchY = mfgdata.CountsPerInch_Y;
>
> _Controller.Interpreter.CountsPerInchZ = mfgdata.CountsPerInch_Z;
>
> _Controller.Interpreter.CountsPerInchA = mfgdata.CountsPerInch_A;
>
> _Controller.Interpreter.CountsPerInchB = mfgdata.CountsPerInch_B;
>
> _Controller.Interpreter.CountsPerInchC = mfgdata.CountsPerInch_C;
>
>
>
> _Controller.Interpreter.InitializeOnExecute = false;
>
> _Controller.Interpreter.InitializeInterpreter();
>
>
>
> Notice the last lines (InitializeOnExecute and InitializeInterpreter), I set my tool table programmatically via strongly-typed XML data rather than use the EMC tool file. This allows that to work.
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes
> Sent: Sunday, January 22, 2012 4:41 PM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> 100 is the default value. So either they are not really being set or they are bein set in a different instance.
>
>
>
> TK
>
>
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 3:27 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Ã
> > > > No.Ã When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.Ã It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > > Ã
> > > > It has nothing to do with the file you are trying to execute.Ã It is complaining because it can't find its internal files in the expected places.Ã Or I guess more specifically MainPathRoot is somehow invalid.
> > > > Ã
> > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > > Ã
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Ã
> > > > Tom,
> > > >
> > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Brad/Ray,
> > > > > ÃâÃ
> > > > > That shouldn't be necessary.Ãâà Ãâà The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > > ÃâÃ
> > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > > ÃâÃ
> > > > > It should already point to the root directory where KMotionDLL is located.Ãâà If not, remove whatever changed it.
> > > > > ÃâÃ
> > > > > Regards
> > > > > TK
> > > > > ÃâÃ
> > > > >
> > > > > From: Brad Murry <bradodarb@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃâÃ
> > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > > ÃâÃ
> > > > > Set this::
> > > > > Ãâà Ãâà Ãâà Ãâà _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > > ÃâÃ
> > > > > ÃâÃ
> > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > > ÃâÃ
> > > > > -Brad Murry
> > > > > ÃâÃ
> > > > > From:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > ÃâÃ
> > > > > ÃâÃ
> > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Where are you getting your axis values?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > >
> > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > >
> > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > You use colorful language Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So here is what I observe::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì" release as I thought, just a straight shot.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am seeing around 15ms round trip.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > >
> > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > _Controller.ReleaseToken();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I get the 218ms off the batÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâæ
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > >
> > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ After the disconnect when you are getting the long delays.ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ Is theÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ MainStatus data correct and current?
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > Regards
> > > > > > > > > > TKÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > >
> > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > >
> > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > >
> > > > > > > > > > Any ideas?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ThisÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ involves:
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > Of course these are typical times.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > Regards.
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡
> > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > > > going to try
> > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > >
> > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > >
> > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > >
> > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì
> > > > 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ã⦠áÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'
> > > > Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠à 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠à 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ⬠à 'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
Group: DynoMotion |
Message: 3334 |
From: himykabibble |
Date: 1/22/2012 |
Subject: Re: Twiddling Bits in dotNet |
Brad,
Yes, that problem is resolved. I didn't know the axis parameter needed to be programmed into three different places. Wouldn't it make sense to have a high level API that would allow them all to be set at one time?
BTW - I copied that code from the v428 dotNet example, so that needs to be updated.
Regards,
Ray L.
--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> âI think it is something in dotNet that is broken,â
>
>
>
> Not the case here, Ray. Did you use my directions?
>
>
>
> -Brad
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 5:06 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Tom,
>
> Sounds logical, but there is only one instance, and when I set a breakpoint in the init routine, they are getting correctly set. When I set a breakpoint in the method that gets the axis positions, and in the InterpreterDone callback, they are also correct in the KM_Controller object. But, the positions/counts are wrong, so I think it is something in dotNet that is broken, and not passing them along to the interpreter.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> >
> > 100 is the default value.Ã So either they are not really being set or they are bein set in a different instance.
> > Ã
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Sent: Sunday, January 22, 2012 3:27 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > Ã
> > Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃâÃ
> > > > > No.Ãâà When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.Ãâà It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > > > ÃâÃ
> > > > > It has nothing to do with the file you are trying to execute.Ãâà It is complaining because it can't find its internal files in the expected places.Ãâà Or I guess more specifically MainPathRoot is somehow invalid.
> > > > > ÃâÃ
> > > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > > > ÃâÃ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃâÃ
> > > > > Tom,
> > > > >
> > > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Brad/Ray,
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > That shouldn't be necessary.ÃÆ'ââ¬Å¡Ãâà ÃÆ'ââ¬Å¡Ãâà The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > It should already point to the root directory where KMotionDLL is located.ÃÆ'ââ¬Å¡Ãâà If not, remove whatever changed it.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > Regards
> > > > > > TK
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > >
> > > > > > From: Brad Murry <bradodarb@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > Set this::
> > > > > > ÃÆ'ââ¬Å¡Ãâà ÃÆ'ââ¬Å¡Ãâà ÃÆ'ââ¬Å¡Ãâà ÃÆ'ââ¬Å¡Ãâà _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > -Brad Murry
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > From:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > ÃÆ'ââ¬Å¡ÃâÃ
> > > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Where are you getting your axis values?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > > >
> > > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > > >
> > > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > You use colorful language Ray,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > So here is what I observe::
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì" release as I thought, just a straight shot.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > > >
> > > > > > > > > while (true)
> > > > > > > > >
> > > > > > > > > {
> > > > > > > > >
> > > > > > > > > sw.Reset();
> > > > > > > > >
> > > > > > > > > sw.Start();
> > > > > > > > >
> > > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > > >
> > > > > > > > > sw.Stop();
> > > > > > > > >
> > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > > >
> > > > > > > > > Thread.Sleep(100);
> > > > > > > > >
> > > > > > > > > }
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I am seeing around 15ms round trip.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > > >
> > > > > > > > > while (true)
> > > > > > > > >
> > > > > > > > > {
> > > > > > > > >
> > > > > > > > > sw.Reset();
> > > > > > > > >
> > > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > > >
> > > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > > >
> > > > > > > > > {
> > > > > > > > >
> > > > > > > > > sw.Start();
> > > > > > > > >
> > > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > > >
> > > > > > > > > sw.Stop();
> > > > > > > > >
> > > > > > > > > _Controller.ReleaseToken();
> > > > > > > > >
> > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > > >
> > > > > > > > > }
> > > > > > > > >
> > > > > > > > > Thread.Sleep(100);
> > > > > > > > >
> > > > > > > > > }
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I get the 218ms off the batÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > > >
> > > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá After the disconnect when you are getting the long delays.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá Is theÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá MainStatus data correct and current?
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > Regards
> > > > > > > > > > > TKÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > >
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > Tom,
> > > > > > > > > > >
> > > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > > >
> > > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > > >
> > > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > > >
> > > > > > > > > > > Any ideas?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá ThisÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá involves:
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > Of course these are typical times.ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá Worst case might be seconds depending on Windows.
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > Regards.
> > > > > > > > > > > > TK
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦Ãâá
> > > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so
> > long? I'm
> > > > > > going to try
> > > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > > >
> > > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > > >
> > > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > >
> > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì
> > > > >
> > 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡
> > ìÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâ
> > ìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'
> > > > > Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬ÃâæÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâæ. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâì
> > 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâ
> > âÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâì
> > 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâ
> > âÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡Ãâì 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâì
> > 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâà 'ÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâ
> > âÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡ÃâæÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ââ∠'ÃÆ'Ã'Ãâ 'ÃÆ'ââ¬Å¡ÃââÃÆ'Ã'ÃââÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'ââ¬Å¡ÃâìÃÆ'Ã'âââ¬Ã¦ÃÆ'ââ¬Å¡ÃâáÃÆ'Ã'Ãâ 'ÃÆ'â⬠'ÃÆ'Ã'ÃââÃÆ'ââââ¬Ã
¡ÃâìÃÆ'ââ¬Â¦ÃâáÃÆ'Ã'Ãâ 'ÃÆ'ââââ¬Å¡Ã¬Ãâ¦Ã¡ÃÆ'Ã'âââ¬Ã
¡ÃÆ'ââ¬Å¡Ãâá
> > > > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
|
|
| | | | | | | | | | | | | | | | | | | |